home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Database Designers / Rational Rose 2000 / Rational Setup.EXE / common / OutOfTheBox / synchronizer rules / supl_requirement_to_tr_requirement.rsd < prev    next >
Encoding:
Text File  |  1998-11-23  |  907 b   |  27 lines

  1. # File:        supl_requirement_to_tr_requirement.rsd
  2. # Purpose:    Sample rule for creating a test requirement that corresponds
  3. #        to a supplemental requirement in a Rational RequisitePro
  4. #        domain project. It also traces the test requirement back to the
  5. #        supplemental requirement.
  6.  
  7. ###############################################################################
  8. #
  9. # Create a test requirement from a supplemental requirement.
  10. begin rule "Create Test requirement from Supplemental requirement"
  11.  
  12. description
  13. {
  14. For a supplemental requirement, create a test requirement that will be
  15. used by TestStudio.  This rule applies when the Test attribute on the SUPL
  16. requirement is True.
  17. }
  18.  
  19.     projects RequisitePro to RequisitePro
  20.     items "Supplementary Requirement Type" to "Test Requirement Type"
  21.     applies when Test = True
  22.     properties
  23.         source.Text init target.Text
  24.     trace target to source
  25.  
  26. end rule
  27.